home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / NotADirectoryError.h < prev    next >
Text File  |  2000-06-23  |  362b  |  23 lines

  1. // NotADirectoryError.h
  2.  
  3. #ifndef NotADirectoryError_h
  4. #define NotADirectoryError_h
  5.  
  6. #ifndef FileError_h
  7. #include "FileError.h"
  8. #endif
  9.  
  10. class NotADirectoryError: public FileError
  11.   {
  12.     public:
  13.         NotADirectoryError( OSErr error )
  14.           : FileError( error )
  15.           {}
  16.         
  17.         // Used for afpObjectTypeErr,
  18.         // dupFNErr from findFolder
  19.         // and internal errors
  20.   };
  21.  
  22. #endif
  23.